home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 30
/
Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso
/
Aminet
/
game
/
misc
/
Quest.lha
/
Quest
/
lib
/
go-exe-check.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1999-01-28
|
269b
|
27 lines
/* go-exe-check rexx */
parse arg exe .
if exe = '' then
ret = 5
else do
if open('in',exe,'R') then do
id = c2x(readch('in',4))
call close('in')
if id = '000003F3' then
ret = 0
else
ret = 5
end
else
ret = 5
end
exit ret